mirror of
https://codeberg.org/tacerus/teddit.git
synced 2024-11-22 06:49:26 +01:00
f0b2204e72
To play nicely with tmpfs mounts
16 lines
326 B
Docker
16 lines
326 B
Docker
# Use LTS Node.js base image
|
|
FROM node:14.16-alpine
|
|
|
|
# Video support dependency
|
|
RUN apk add ffmpeg
|
|
|
|
# Install NPM dependencies and copy the project
|
|
WORKDIR /teddit
|
|
COPY . /teddit/
|
|
RUN npm install --no-optional
|
|
COPY config.js.template /teddit/config.js
|
|
|
|
RUN find /teddit/static/ -type d -exec chmod -R 777 {} \;
|
|
|
|
CMD npm start
|