teddit-reddit-frontend-alte.../Dockerfile

18 lines
347 B
Docker
Raw Normal View History

# Use LTS Node.js slim image
FROM node:slim
2020-12-09 23:02:44 +01:00
# Video support dependency
RUN apt-get update && apt-get install -y ffmpeg wget
2020-12-09 23:02:44 +01:00
# Install NPM dependencies and copy the project
WORKDIR /teddit
2021-04-07 06:10:06 +02:00
COPY . ./
RUN npm install --no-optional
2021-04-07 06:10:06 +02:00
COPY config.js.template ./config.js
2021-04-07 06:10:06 +02:00
RUN find ./static/ -type d -exec chmod -R 777 {} \;
EXPOSE 8080
CMD npm start