Skip to content

Commit ded9c6c

Browse files
committed
fixing bugs
1 parent 87becb1 commit ded9c6c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

images.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"tested": true
1414
},
1515
{
16-
"version": "1.16.45",
16+
"version": "1.16.47",
1717
"tag": "test",
1818
"tested": false
1919
}

src/cocalc/start-env.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ set -ev
44

55
# Setup env vars about project we will connect to.
66

7-
# avoid possible confusion
8-
unset COCALC_PROJECT_ID
9-
107
# Where to store logs
118
export LOGS='/tmp/logs'
129

@@ -18,6 +15,7 @@ export API_SERVER=`cat /cocalc/conf/api_server`
1815

1916
# The project to connect to
2017
export PROJECT_ID=`cat /cocalc/conf/project_id`
18+
export COCALC_PROJECT_ID=`cat /cocalc/conf/project_id`
2119

2220
# The numerical id of the compute server
2321
export COMPUTE_SERVER_ID=`cat /cocalc/conf/compute_server_id`

src/filesystem/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ USER root
1111
RUN \
1212
apt-get update \
1313
&& DEBIAN_FRONTEND=noninteractive apt-get install -y unionfs-fuse lz4 \
14-
rsync bsdextrautils bzip2 unzip tar xz-utils \
14+
rsync bsdextrautils bsdmainutils file bzip2 unzip tar xz-utils \
1515
yapf3 file \
1616
&& ln -s /usr/bin/yapf3 /usr/bin/yapf
1717

1818
USER user
1919
CMD /cocalc/start-filesystem.sh
2020

21-

0 commit comments

Comments
 (0)