We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 224a228 commit da1fb64Copy full SHA for da1fb64
.github/workflows/development.yaml
@@ -18,7 +18,7 @@ jobs:
18
matrix:
19
include:
20
- py_ver: 3.8
21
- distro: debian
+ distro: alpine
22
image: djbase
23
env:
24
PY_VER: ${{matrix.py_ver}}
@@ -34,7 +34,7 @@ jobs:
34
export HOST_UID=$(id -u)
35
docker-compose -f docker-compose-build.yaml up --exit-code-from app --build
36
echo "DJ_VERSION=${DJ_VERSION}" >> $GITHUB_ENV
37
- - if: matrix.py_ver == '3.8' && matrix.distro == 'debian'
+ - if: matrix.py_ver == '3.8' && matrix.distro == 'alpine'
38
name: Add pip artifacts
39
uses: actions/upload-artifact@v2
40
with:
Dockerfile
@@ -1,5 +1,5 @@
1
ARG PY_VER=3.8
2
-ARG DISTRO=debian
+ARG DISTRO=alpine
3
ARG IMAGE=djbase
4
FROM datajoint/${IMAGE}:py${PY_VER}-${DISTRO}
5
WORKDIR /main
0 commit comments