1
0
Fork 0
mirror of https://github.com/52north/ttn-ogcswe-integration synced 2025-03-12 15:30:29 +01:00
ttn-ogcswe-integration/Dockerfile
Norwin Roosen 90ada65287 update dependencies
- now running on node 10 (due to grpc upgrade)
- regenerated lockfile due to issues with grpc version incompaitibilities
- also fixes #7, which was due to https://github.com/grpc/grpc/issues/6126
2018-12-21 00:18:39 +01:00

13 lines
273 B
Docker

FROM node:10-alpine
RUN apk --no-cache --virtual .build add python make g++ git ca-certificates \
&& mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . /usr/src/app/
RUN yarn install --pure-lockfile \
&& yarn build \
&& apk del .build
CMD [ "npm", "start" ]