Skip to content

Commit 4449655

Browse files
Update to Dockerfile and Action pipeline
1 parent bc7e9c3 commit 4449655

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ COPY .devcontainer/config .snowsql
99

1010
# Install SnowSQL
1111
RUN curl -O https://sfc-repo.snowflakecomputing.com/snowsql/bootstrap/1.2/linux_x86_64/snowsql-1.2.28-linux_x86_64.bash \
12-
&& SNOWSQL_DEST=~/bin SNOWSQL_LOGIN_SHELL=~/.profile bash snowsql-1.2.28-linux_x86_64.bash
12+
&& SNOWSQL_DEST=~/bin SNOWSQL_LOGIN_SHELL=~/.profile bash snowsql-1.2.28-linux_x86_64.bash \
13+
&& rm snowsql-1.2.28-linux_x86_64.bash
1314

1415
# Create the conda environment
1516
COPY environment.yml .

.github/workflows/build_and_deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
- name: Checkout repository
1919
uses: actions/checkout@v3
2020

21-
- name: Setup Python 3.8
21+
- name: Setup Python 3.10
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: '3.8'
24+
python-version: '3.10'
2525

2626
- name: Install Python packages
2727
run: pip install -r requirements.txt

0 commit comments

Comments
 (0)