We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8186364 commit 7dfe447Copy full SHA for 7dfe447
1 file changed
examples/blog/Dockerfile
@@ -19,8 +19,9 @@ RUN adduser \
19
--uid "${UID}" \
20
appuser
21
22
+WORKDIR /app
23
# Copy the executable from the "build" stage of Github Action.
-COPY ./bin/console /app/bin/
24
+COPY ./bin /app/bin/
25
# Copy environment variables
26
COPY .env .env
27
#COPY .env.test .env.test
@@ -30,8 +31,6 @@ RUN chown -R appuser:appuser /app
30
31
32
USER appuser
33
-WORKDIR /app
34
-
35
RUN ls -la /app
36
37
# Expose the port that the application listens on.
0 commit comments