thedocks/tiddlywiki/Dockerfile

16 lines
206 B
Docker
Raw Permalink Normal View History

2021-10-26 22:01:40 +01:00
FROM node:12-alpine
2021-10-26 21:06:12 +01:00
2022-09-19 21:25:17 +01:00
RUN npm install -g tiddlywiki@5.2.3
2021-10-26 21:06:12 +01:00
2021-10-26 22:01:40 +01:00
EXPOSE 8080
2021-10-26 21:06:12 +01:00
2021-10-26 22:01:40 +01:00
VOLUME ["/app"]
2021-10-26 21:06:12 +01:00
2021-10-26 22:01:40 +01:00
WORKDIR /app
COPY entrypoint.sh /entrypoint.sh
2021-10-26 21:06:12 +01:00
2021-10-26 22:01:40 +01:00
RUN chmod +x /entrypoint.sh
2021-10-26 21:06:12 +01:00
2021-10-26 22:01:40 +01:00
CMD [ "/entrypoint.sh" ]