Initial notea packaging

This commit is contained in:
Joe
2021-05-05 10:59:36 -05:00
parent ff1c8d3e49
commit 1b4ddb7f13
4 changed files with 65 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
COPY --from=cinwell/notea:0.0.1 /app/ /app/code/
WORKDIR /app/code
COPY example.env.sh start.sh /app/code/
RUN chmod +x /app/code/start.sh && mkdir /app/data
EXPOSE 3000
CMD ["/app/code/start.sh"]