Initial build w/ chart
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2023-05-10 11:42:08 +02:00
parent 403c64577e
commit 29f8f24d09
12 changed files with 420 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM node:latest
RUN npm install -g json-server
COPY init/entrypoint.sh /opt/entrypoint.sh
WORKDIR /data
VOLUME /data
EXPOSE 80
ENTRYPOINT ["bash", "/opt/entrypoint.sh"]
CMD []