mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-24 04:18:00 +00:00
dfaabac0df
* docker file & docker-compose * Readme & spelling corretions * undoing formatOnSave changes * more changes to readme
17 lines
335 B
Docker
17 lines
335 B
Docker
FROM node:alpine
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk update && apk add python g++ make openssh git bash pdftk
|
|
RUN export PYTHONPATH=${PYTHONPATH}:/usr/lib/python2.7
|
|
|
|
COPY ./package.json yarn.lock ./
|
|
|
|
RUN yarn
|
|
|
|
COPY . .
|
|
|
|
# Frontend is exposing 3000
|
|
# Backend is exposing 8080
|
|
# No need for expose, if using docker-compose & docker run -p 3000:3000
|