1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/deployment/Dockerfile.docker

13 lines
269 B
Docker
Raw Normal View History

2020-06-14 19:23:27 -04:00
FROM node:alpine
ARG SOURCE_DIR=/src
ARG ARTIFACT_DIR=/jellyfin-web
RUN apk add autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm python
WORKDIR ${SOURCE_DIR}/
COPY . .
2020-06-14 19:59:32 -04:00
RUN ls -al .
2020-06-14 19:23:27 -04:00
RUN yarn install && mv dist ${ARTIFACT_DIR}