Create default sock path in Docker

This commit is contained in:
Juan Font 2023-05-10 13:52:44 +00:00
parent 4c8f8c6a1c
commit f73354b4f4
2 changed files with 4 additions and 0 deletions

View File

@ -19,5 +19,7 @@ FROM docker.io/debian:bullseye-slim
COPY --from=build /go/bin/headscale /bin/headscale
ENV TZ UTC
RUN mkdir -p /var/run/headscale
EXPOSE 8080/tcp
CMD ["headscale"]

View File

@ -18,6 +18,8 @@ FROM docker.io/golang:1.20.0-bullseye
COPY --from=build /go/bin/headscale /bin/headscale
ENV TZ UTC
RUN mkdir -p /var/run/headscale
# Need to reset the entrypoint or everything will run as a busybox script
ENTRYPOINT []
EXPOSE 8080/tcp