Skip to content

Commit 1c02a68

Browse files
authored
Merge pull request #134 from SADiLaR/fix/dockerfile-optimal-layer-order
fix(build): copy entrypoint before app
2 parents a9d95a4 + cb11b55 commit 1c02a68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ RUN <<EOF
2323
EOF
2424

2525
# Copy project
26-
COPY ./app /app/
2726
COPY ./entrypoint.sh /
27+
COPY ./app /app/
2828

2929
# Run the application
3030
ENTRYPOINT ["bash", "/entrypoint.sh"]

0 commit comments

Comments
 (0)