aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/Dockerfile.alpine
blob: 939b2d23b9fe2b416e80c296c4567014f303ed96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM node:8-alpine

# Install dependencies
RUN apk add --no-cache ffmpeg openssl bash make g++ git \
 && apk add --no-cache --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ vips-dev fftw-dev

# Install the application
WORKDIR /app

COPY . ./
RUN bash -c 'yarn install --pure-lockfile && npm run build'

# Configure the application
RUN addgroup -g 991 peertube \
 && adduser -D -u 991 -G peertube -h /data peertube
USER peertube

ENV NODE_ENV production
ENV NODE_CONFIG_DIR /app/support/docker/production/config/

# Run the application
CMD ["npm", "start"]
VOLUME ["/data"]
EXPOSE 9000