mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
16 lines
222 B
Docker
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
|