mirror of
https://codeberg.org/tacerus/teddit.git
synced 2025-01-08 12:22:33 +01:00
Use relative paths in Dockerfile
This commit is contained in:
parent
f0b2204e72
commit
68c2a354e4
@ -6,10 +6,10 @@ RUN apk add ffmpeg
|
|||||||
|
|
||||||
# Install NPM dependencies and copy the project
|
# Install NPM dependencies and copy the project
|
||||||
WORKDIR /teddit
|
WORKDIR /teddit
|
||||||
COPY . /teddit/
|
COPY . ./
|
||||||
RUN npm install --no-optional
|
RUN npm install --no-optional
|
||||||
COPY config.js.template /teddit/config.js
|
COPY config.js.template ./config.js
|
||||||
|
|
||||||
RUN find /teddit/static/ -type d -exec chmod -R 777 {} \;
|
RUN find ./static/ -type d -exec chmod -R 777 {} \;
|
||||||
|
|
||||||
CMD npm start
|
CMD npm start
|
||||||
|
Loading…
Reference in New Issue
Block a user