Skip to content
Snippets Groups Projects
Dockerfile 337 B
Newer Older
FROM node

RUN apt-get update && apt-get install -y curl git xsel

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN npm install -g npm
ENV CLI_WIDTH 80
RUN git clone https://github.com/LibrePhotos/librephotos-frontend.git /usr/src/app
RUN npm ci
RUN npm install -g serve
EXPOSE 3000

RUN npm run build

RUN ["chmod", "+x", "./run.sh" ]