mirror of
https://github.com/eliasstepanik/filesystem-livesync.git
synced 2026-01-13 14:38:30 +00:00
added base Dockerfile
This commit is contained in:
parent
5d937a68b1
commit
631271e941
13
docker/Dockerfile
Normal file
13
docker/Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM node:17.9.0-bullseye
|
||||
|
||||
COPY . /app
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN npm install \
|
||||
&& mv /app/dat /data \
|
||||
&& ln -s /data /app/dat ## Assumes /data will store configuration and vaults
|
||||
|
||||
VOLUME /data
|
||||
|
||||
ENTRYPOINT ["npm", "run", "dev"]
|
||||
Loading…
x
Reference in New Issue
Block a user