thedocks/tiddlywiki/Dockerfile

16 lines
205 B
Docker
Raw Normal View History

2021-10-26 22:01:40 +01:00
FROM node:12-alpine
2021-10-26 21:06:12 +01:00
2021-10-26 22:01:40 +01:00
RUN npm install -g tiddlywiki@5.20
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" ]