colouring-montreal/Dockerfile

33 lines
918 B
Docker
Raw Normal View History

2022-02-08 09:09:57 -05:00
FROM ubuntu:18.04
2022-02-07 08:33:56 -05:00
2022-02-11 06:45:13 -05:00
RUN apt-get update -y
RUN apt-get upgrade -y
2022-02-07 09:05:30 -05:00
RUN apt-get install -y build-essential wget
2022-02-09 05:03:12 -05:00
RUN apt-get install parallel -y
2022-02-07 09:05:30 -05:00
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.2.1/wait /wait
RUN chmod +x /wait
2022-02-07 09:05:30 -05:00
2022-02-07 09:35:42 -05:00
RUN mkdir /colouring-london
COPY app /colouring-london/app
COPY migrations /colouring-london/migrations
COPY etl /colouring-london/etl
2022-02-07 09:05:30 -05:00
2022-02-08 05:02:31 -05:00
ENV NODE_VERSION=16.13.2
2022-02-09 05:03:12 -05:00
RUN apt-get install -y curl
2022-02-08 05:02:31 -05:00
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
ENV NVM_DIR=/root/.nvm
RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
ENV PATH="/root/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}"
2022-02-07 09:05:30 -05:00
2022-02-08 05:45:19 -05:00
RUN npm install -g npm@latest
WORKDIR ./colouring-london/app
2022-02-08 10:51:28 -05:00
RUN rm -rf node_modules
2022-02-08 05:45:19 -05:00
RUN npm install
2022-02-07 08:33:56 -05:00
EXPOSE 8080
2022-02-08 09:09:42 -05:00
CMD /wait && npm start