Skip to content

Commit

Permalink
Merge pull request #17 from scality/fixing-release-workflow
Browse files Browse the repository at this point in the history
🔨 Fixing release workflow
  • Loading branch information
gaspardmoindrot committed Apr 18, 2023
2 parents 6add10a + 545429f commit 5e404f7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Docker build

on:
push:
branches:
- main
pull_request:

jobs:
docker-build:
uses: scality/workflows/.github/workflows/docker-build.yaml@v1
with:
name: gh-actions-exporter
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ FROM python:3.10

EXPOSE 8000

ENV POETRY_VERSION=1.1.13
ENV POETRY_VERSION=1.4.2

ENV PATH=$PATH:/root/.poetry/bin

RUN apt-get update && apt-get install curl -y

RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
RUN pip install "poetry==$POETRY_VERSION"

WORKDIR /app

Expand Down

0 comments on commit 5e404f7

Please sign in to comment.