Skip to content
Snippets Groups Projects
Dockerfile 310 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 serve
RUN git clone https://github.com/parruc/librephotos-frontend.git /usr/src/app
RUN npm ci
RUN npm build
RUN ["chmod", "+x", "./run.sh" ]