This website works better with JavaScript.
Home
Explore
Help
Sign In
aagez
/
nexus-timers
Watch
1
Star
1
Fork
0
Code
Issues
4
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
🔨
: Make Dockerfile compatible with older Docker versions
master
Adrien
4 years ago
parent
04bba9a448
commit
04637fdd91
1 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-2
Dockerfile
+ 3
- 2
Dockerfile
View File
@@ -1,7 +1,8 @@
FROM node:erbium-alpine
RUN apk add python2
USER node
WORKDIR /home/node
COPY --chown=node:node package.json yarn.lock ./
COPY package.json yarn.lock ./
RUN chown node:node -R .
USER node
RUN yarn
ENTRYPOINT node build/dev-server.js
Write
Preview
Loading…
Cancel
Save