Skip to content

Update Dockerfile

Update Dockerfile #44

Workflow file for this run

name: Docker Image test
on:
workflow_dispatch: null
push:
branches: test
paths:
- '.github/workflows/test-build.yaml'
- 'Desktop/**'
- 'apt.txt'
- 'user-dirs.dirs'
- 'vscode-extensions.txt'
- 'environment.yml'
- 'start'
- 'postBuild'
- 'Dockerfile'
- 'custom_jupyter_server_config.json'
- 'scripts/**'
- '!book/**' # Ignore all changes in the /book directory
- '!docs/**' # Ignore all changes in the /docs directory
- '!base-image/**'
- '!README.md'
- '!conda-lock.yml'
- '!LICENSE'
jobs:
build:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
with:
ref: test
- name: Login to GitHub Container Registry
if: github.repository == 'nmfs-opensci/py-rocket-base'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Create short_sha tag
shell: bash
run: |
short_sha=$(echo "${{ github.sha }}" | cut -c1-7)
echo "tag=${short_sha}" >> $GITHUB_ENV
- name: Build the Docker image
if: github.repository == 'nmfs-opensci/py-rocket-base'
run: |
docker build . -f Dockerfile \
--tag ghcr.io/nmfs-opensci/py-rocket-base/test:latest \
--tag ghcr.io/nmfs-opensci/py-rocket-base/test:${{ env.tag }}
- name: Publish
if: github.repository == 'nmfs-opensci/py-rocket-base'
run: |
docker push ghcr.io/nmfs-opensci/py-rocket-base/test:latest
docker push ghcr.io/nmfs-opensci/py-rocket-base/test:${{ env.tag }}