djmuted commited on
Commit
edd362c
1 Parent(s): d48d794

Edit Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
  FROM node:18-bullseye-slim
2
- ADD ./* /app/
3
  WORKDIR /app
4
  RUN --mount=type=secret,id=ENV,mode=0444,required=true \
5
  cat /run/secrets/ENV > /app/.env && yarn install
 
1
  FROM node:18-bullseye-slim
2
+ COPY . /app
3
  WORKDIR /app
4
  RUN --mount=type=secret,id=ENV,mode=0444,required=true \
5
  cat /run/secrets/ENV > /app/.env && yarn install