dnote/host/docker/Dockerfile
Sung ca5af5e34a
Run server on port 3001 (#687)
* Simplify docker compose file

* Run on port 3001
2025-10-11 12:41:51 -07:00

16 lines
222 B
Docker

FROM busybox:glibc
ARG tarballName
RUN test -n "$tarballName"
WORKDIR dnote
COPY "$tarballName" .
RUN tar -xvzf "$tarballName"
COPY entrypoint.sh .
ENTRYPOINT ["./entrypoint.sh"]
CMD ./dnote-server start
EXPOSE 3001