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 1e2437b commit f1005feCopy full SHA for f1005fe
Dockerfile
@@ -6,11 +6,11 @@ RUN npm ci && npm run tsc
6
7
FROM node:16-alpine as app
8
WORKDIR /usr/src/app
9
-RUN apk add git postgresql-client
+RUN apk add --no-cache git postgresql-client
10
COPY --from=builder ./node_modules ./node_modules
11
COPY --from=builder ./dist ./dist
12
COPY ./.git ./.git
13
COPY entrypoint.sh .
14
COPY databases/*.sql databases/
15
EXPOSE 8080
16
-CMD ./entrypoint.sh
+CMD ./entrypoint.sh
0 commit comments