mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-07 19:08:37 +03:00
15 lines
275 B
Docker
15 lines
275 B
Docker
FROM mhart/alpine-node:10.11
|
|
|
|
LABEL authors="Lachlan Kermode <lk@forensic-architecture.org>"
|
|
|
|
# Install app dependencies
|
|
COPY package.json /www/package.json
|
|
RUN cd /www; yarn
|
|
|
|
# Copy app source
|
|
COPY . /www
|
|
WORKDIR /www
|
|
RUN yarn build
|
|
|
|
# files available to copy at /www/build
|