Skip to content

Commit 83d34e4

Browse files
committed
This resolves an inconsistency for validating new and old datasets
1 parent 964f247 commit 83d34e4

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

build/docker/Dockerfile.upload

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,18 @@ RUN apt-get update && \
1111
apt-get install -y git curl gnupg && \
1212
rm -rf /var/lib/apt/lists/*
1313

14-
# Install GitHub CLI (gh)
15-
RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | \
16-
gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg && \
17-
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | \
18-
tee /etc/apt/sources.list.d/github-cli.list > /dev/null && \
19-
apt-get update && \
20-
apt-get install -y gh && \
21-
rm -rf /var/lib/apt/lists/*
14+
# # Install GitHub CLI (gh)
15+
# RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | \
16+
# gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg && \
17+
# echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | \
18+
# tee /etc/apt/sources.list.d/github-cli.list > /dev/null && \
19+
# apt-get update && \
20+
# apt-get install -y gh && \
21+
# rm -rf /var/lib/apt/lists/*
22+
2223

24+
# RUN git clone https://github.com/PNNL-CompBio/coderdata.git
25+
# WORKDIR /usr/src/app/coderdata
2326

24-
RUN git clone https://github.com/PNNL-CompBio/coderdata.git
25-
WORKDIR /usr/src/app/coderdata
27+
ADD schema schema
28+
ADD scripts scripts

0 commit comments

Comments
 (0)