diff --git a/Dockerfile b/Dockerfile index d3e22cd..116880a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:18-alpine WORKDIR /app COPY . . -COPY /production/.env .env +COPY /production/.env.example .env RUN \ if [ -f yarn.lock ]; then yarn --frozen-lockfile; \