Skip to content

Commit fc17169

Browse files
committed
fix: correct COPY instruction in Dockerfile for published application
1 parent 4b622dd commit fc17169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deployment/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \
3737
WORKDIR /app
3838

3939
# Copy published application
40-
COPY --from=build /app/publish .
40+
COPY --from=publish /app/publish .
4141

4242
# Create directory for logs and ensure proper permissions
4343
RUN mkdir -p /app/logs && chown -R nlwebnet:nlwebnet /app

0 commit comments

Comments
 (0)