-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
40 lines (29 loc) · 1.05 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM python:3.10-alpine
RUN adduser --disabled-password --gecos '' deploy
RUN mkdir -p /src
RUN chown deploy:deploy /src
RUN pip --no-cache-dir install poetry
RUN pip --no-cache-dir install awscli --upgrade
ARG terraform_version=0.12.31
ARG kubectl_version=1.21.14
RUN apk --no-cache --quiet add \
curl \
git \
make
RUN curl https://releases.hashicorp.com/terraform/${terraform_version}/terraform_${terraform_version}_linux_amd64.zip \
-o /tmp/terraform_${terraform_version}_linux_amd64.zip \
&& unzip -d /tmp /tmp/terraform_${terraform_version}_linux_amd64.zip \
&& chmod +x /tmp/terraform \
&& mv /tmp/terraform /usr/local/bin/terraform
RUN curl https://storage.googleapis.com/kubernetes-release/release/v${kubectl_version}/bin/linux/amd64/kubectl -o /tmp/kubectl \
&& chmod 755 /tmp/kubectl \
&& mv /tmp/kubectl /usr/local/bin/kubectl
WORKDIR /src
COPY pyproject.toml poetry.lock /src/
RUN poetry config virtualenvs.create false \
&& poetry install --without dev
USER deploy
ENV USER deploy
ENV HOME /home/deploy
COPY . /src
CMD ["python"]