Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
fix ENTRYPOINT in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mostlygeek committed Jun 7, 2016
1 parent ce22b2a commit e4f1f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM busybox:1.24.2

WORKDIR /app
ENTRYPOINT /app/go-syncstorage
ENTRYPOINT ["/app/go-syncstorage"]

RUN addgroup -g 10001 app && \
adduser -G app -u 10001 -D -h /app -s /sbin/nologin app
Expand Down

0 comments on commit e4f1f68

Please sign in to comment.