We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28d9ca8 commit e400007Copy full SHA for e400007
backend/Dockerfile
@@ -13,6 +13,9 @@ RUN npm install
13
# Copy the rest of the application code
14
COPY . .
15
16
+# Copy the .env file
17
+COPY .env .env
18
+
19
# Expose the port the app runs on
20
EXPOSE 5001
21
frontend/Dockerfile
@@ -25,6 +25,9 @@ RUN npm install -g serve
25
# Copy the build files from the previous stage
26
COPY --from=build /app/build /app/build
27
28
29
30
31
32
EXPOSE 3000
33
0 commit comments