Skip to content

Commit

Permalink
node:13
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbam committed Jan 9, 2020
1 parent 48d5dc5 commit 129ce3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Dockerfile

FROM node:12 as BUILD
FROM node:13 as BUILD
WORKDIR /build
COPY . /build
RUN npm run build

FROM node:12-alpine
FROM node:13-alpine
EXPOSE 3000
WORKDIR /data
COPY --from=BUILD /build /data
# ADD . /data
# RUN npm run build
EXPOSE 3000
CMD ["node", "server.js"]

0 comments on commit 129ce3b

Please sign in to comment.