Skip to content

Commit badcee7

Browse files
committed
add gcloud to dockerfile
1 parent 171f51b commit badcee7

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

requirements.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#
77
aiodns==2.0.0
88
# via hail
9+
aiofiles==24.1.0
10+
# via -r requirements.in
911
aiohappyeyeballs==2.3.5
1012
# via aiohttp
1113
aiohttp==3.10.2
@@ -14,6 +16,8 @@ aiohttp==3.10.2
1416
# slackclient
1517
aiosignal==1.3.1
1618
# via aiohttp
19+
annotated-types==0.7.0
20+
# via pydantic
1721
asttokens==2.4.1
1822
# via stack-data
1923
async-timeout==4.0.3
@@ -272,6 +276,10 @@ pycares==4.4.0
272276
# via aiodns
273277
pycparser==2.21
274278
# via cffi
279+
pydantic==2.8.2
280+
# via -r requirements.in
281+
pydantic-core==2.20.1
282+
# via pydantic
275283
pygments==2.17.2
276284
# via
277285
# ipython
@@ -365,6 +373,8 @@ typing-extensions==4.8.0
365373
# azure-core
366374
# azure-storage-blob
367375
# janus
376+
# pydantic
377+
# pydantic-core
368378
# typer
369379
tzdata==2023.3
370380
# via pandas

v03_pipeline/deploy/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
FROM docker:dind as BUILD
22
FROM hailgenetics/hail:0.2.132-py3.10
33
COPY --from=BUILD /usr/local/bin/docker /usr/local/bin/docker
4-
54
LABEL maintainer="Broad TGG"
65

6+
RUN curl -sSL https://sdk.cloud.google.com | bash
7+
ENV PATH $PATH:/root/google-cloud-sdk/bin
8+
79
WORKDIR /v03_pipeline
810

911
## Copy & Install Application Deps

0 commit comments

Comments
 (0)