diff --git a/.env.sample b/.env.sample new file mode 100644 index 0000000..ba934f2 --- /dev/null +++ b/.env.sample @@ -0,0 +1,6 @@ +PORT= + +DATABASE_URL= +JWT_SECRET_KEY= +SALT_ROUNDS= + diff --git a/Dockerfile b/Dockerfile index e9252d4..62a9596 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,6 @@ RUN npm install COPY . . -RUN npx prisma migrate deploy - RUN npm run build EXPOSE 8080