Skip to content

fix: fix base image and install numpy and pandas #3

fix: fix base image and install numpy and pandas

fix: fix base image and install numpy and pandas #3

Workflow file for this run

name: Publish Image to GHCR
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
publish-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
run: |
docker build . --tag ghcr.io/untitlecms/python-sandbox:v0
docker push ghcr.io/untitlecms/python-sandbox:v0