1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-01-05 07:17:29 +01:00
teddit-reddit-frontend-alte.../Dockerfile
2022-02-08 18:52:25 +01:00

16 lines
340 B
Docker

# Use LTS Node.js slim image
FROM node:14.17-slim
# Video support dependency
RUN apt-get update && apt-get install -y ffmpeg wget
# Install NPM dependencies and copy the project
WORKDIR /teddit
COPY . ./
RUN npm install --no-optional
COPY config.js.template ./config.js
RUN find ./static/ -type d -exec chmod -R 777 {} \;
CMD npm start