first commit

This commit is contained in:
spiduler
2021-07-13 17:11:27 +09:00
commit d36fd3864c
17 changed files with 5217 additions and 0 deletions

10
docker/legacy/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:lts-alpine
LABEL author=w3c@naver.com
VOLUME /var/www/app
COPY start.sh /var/www/start.sh
RUN ["chmod", "+x", "/var/www/start.sh"]
ENTRYPOINT ["/var/www/start.sh"]