Skip to content

Hotfix: Docker Exit Code 139 when rotating the map #62

Hotfix: Docker Exit Code 139 when rotating the map

Hotfix: Docker Exit Code 139 when rotating the map #62

Workflow file for this run

name: Build and push Docker image
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Wait until PyPI release is available
uses: actions/github-script@v3
with:
script: |
const wait = (ms) => new Promise(resolve => setTimeout(resolve, ms));
await wait(300000); // Wait for 5 minutes (300000 milliseconds)
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: |
iwatkot/maps4fs:latest
iwatkot/maps4fs:${{ github.ref_name }}
file: ./Dockerfile