change dockerfile to use mozilla/ci-docker-bases

This commit is contained in:
tiftran 2019-10-09 12:30:32 -07:00
Родитель 83734d7df2
Коммит 45c9fb12c6
1 изменённых файлов: 2 добавлений и 10 удалений

Просмотреть файл

@ -1,18 +1,10 @@
FROM python:3.7.4
FROM mozilla/cidockerbases:therapist-latest
WORKDIR /app
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
RUN apt-get install -y nodejs
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update && apt-get install yarn
COPY ./package.json /app/package.json
COPY ./yarn.lock /app/yarn.lock
RUN yarn install
COPY . /app
COPY . /app