Dockerfile 189 B

1234567891011121314
  1. FROM scratch
  2. LABEL maintainer "[email protected]"
  3. COPY bin/sakuin /app/
  4. COPY assets/ /app/assets/
  5. EXPOSE 3000
  6. VOLUME ["/data"]
  7. WORKDIR /app
  8. ENTRYPOINT ["/app/sakuin"]
  9. CMD ["-dir","/data"]