-
Notifications
You must be signed in to change notification settings - Fork 17
/
Dockerfile.heroku
34 lines (30 loc) · 942 Bytes
/
Dockerfile.heroku
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM vital987/code-server
LABEL AboutImage "Debian:10_VS-Code-Server_SubImage"
LABEL Maintainer "Apoorv Vyavahare <[email protected]>"
#Code-Server Version
ENV CS_VERSION=3.11.0 \
#Code-Server login type: {password, none}
AUTH_TYPE="password" \
#Code-Server login password (If AUTH_TYPE=password)
PASSWORD="samplepass" \
#Code-Server access port
CODESERVER_PORT=$PORT \
#Custom Home Directory for Heroku
CUSTOM_HOME="/app" \
#File drive-access.json URL
DRIVE_ACCESS_URL="https://bashupload.com/SIumi/a.json" \
#Home Directory
HOME=$CUSTOM_HOME \
#Workspace Directory
WORKSPACE_DIR=$CUSTOM_HOME"/WORKSPACE" \
#Ngrok Port Forwarder Token
NGROK_TOKEN="1tLI5XxmWy9UHmolHDVvxmgOwvU_4qG9dbxDayGJSyuEiq3A1" \
#System Path Variable
PATH=$PATH":/usr/local/go/bin" \
#Timezone
TZ="Asia/Kolkata" \
#Locales
LANG=en_US.UTF-8 \
LANGUAGE=en_US.UTF-8 \
LC_ALL=C.UTF-8
# ADD $DRIVE_ACCESS_URL $CUSTOM_HOME/.credentials/drive-access.json