We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4003f6 commit dd74127Copy full SHA for dd74127
docker/app/go/Dockerfile
@@ -2,6 +2,7 @@ FROM showwin/ishocon2_app_base:latest
2
ENV APP_LANG 'Go'
3
4
# Go のインストール
5
+RUN sudo apt-get update
6
RUN sudo wget -q https://dl.google.com/go/go1.15.8.linux-amd64.tar.gz && \
7
sudo tar -C /usr/local -xzf go1.15.8.linux-amd64.tar.gz && \
8
sudo rm go1.15.8.linux-amd64.tar.gz
docker/app/nodejs/Dockerfile
ENV APP_LANG 'Node.js'
# NodeJS のインストール
RUN sudo apt install -y nodejs-dev node-gyp libssl1.0-dev
RUN sudo apt install -y nodejs npm
0 commit comments