This repository was archived by the owner on Mar 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 22{
33 "name" : " Python 3 Developer Container" ,
44 "build" : {
5- "dockerfile" : " Dockerfile" ,
5+ "dockerfile" : " ../ Dockerfile" ,
66 "target" : " build" ,
77 // Only upgrade pip, we will install the project below
88 "args" : {
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129129 - name : Download wheel and lockfiles
130130 uses : actions/download-artifact@v3
131131 with :
132- path : .devcontainer
132+ path : artifacts/
133133
134134 - name : Log in to GitHub Docker Registry
135135 if : github.event_name != 'pull_request'
@@ -161,7 +161,8 @@ jobs:
161161 load : ${{ ! (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) }}
162162 tags : ${{ steps.meta.outputs.tags }}
163163 labels : ${{ steps.meta.outputs.labels }}
164- context : .devcontainer
164+ context : artifacts/
165+ file : ./Dockerfile
165166 # If you have a long docker build, uncomment the following to turn on caching
166167 # For short build times this makes it a little slower
167168 # cache-from: type=gha
Original file line number Diff line number Diff line change 55#
66FROM python:3.11 as build
77
8- ARG PIP_OPTIONS
8+ ARG PIP_OPTIONS=.
99
1010# Add any system dependencies for the developer/build environment here e.g.
1111# RUN apt-get update && apt-get upgrade -y && \
You can’t perform that action at this time.
0 commit comments