diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ COPY *.go /milla/ RUN go build FROM alpine:3.21 -ENV HOME /home/user +ENV HOME=/home/user RUN set -eux; \ adduser -u 1001 -D -h "$HOME" user; \ mkdir "$HOME/.irssi"; \ @@ -14,4 +14,4 @@ RUN set -eux; \ COPY --from=builder /milla/milla "$HOME/milla" RUN chown user:user "$HOME/milla" USER user -ENTRYPOINT ["home/user/milla"] +ENTRYPOINT ["/home/user/milla"] |