teddit/Dockerfile

18 行
347 B
Docker
Raw パーマリンク 通常表示 履歴

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