1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-01-09 09:02:39 +01:00
teddit-reddit-frontend-alte.../Dockerfile
2021-04-05 19:09:48 +09:00

14 lines
267 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
CMD npm start