Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8.15-alpine as npm
FROM node:8.17-alpine as npm
RUN mkdir -p /usr/src/app
COPY . /usr/src/app
WORKDIR /usr/src/app
Expand All @@ -11,7 +11,7 @@ WORKDIR /usr/src/app
RUN lein cljsbuild once prod
RUN lein cljsbuild once server-prod

FROM node:8.14-alpine
FROM node:8.17-alpine
RUN mkdir -p /usr/src/app
COPY --from=clojure /usr/src/app /usr/src/app
WORKDIR /usr/src/app
Expand Down