Skip to content

Commit 4d4ba8a

Browse files
authored
Create Dockerfile.dev
1 parent 1bb6577 commit 4d4ba8a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/Dockerfile.dev

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM python:3.12-slim
2+
3+
RUN apt-get update && apt-get install -y apt-transport-https ca-certificates gnupg curl
4+
5+
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg
6+
7+
RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
8+
9+
RUN apt-get update && apt-get install -y git vim net-tools build-essential google-cloud-cli=473.0.0-0
10+
11+
WORKDIR /code
12+
13+
ENV PYTHONPATH=/code/src

0 commit comments

Comments
 (0)