Skip to content

Commit

Permalink
Merge pull request #275 from giffels/fix-deployment-tests
Browse files Browse the repository at this point in the history
Fix broken deployment docker builds
  • Loading branch information
giffels authored Jan 9, 2023
2 parents 9c6f391 + 638a69e commit 5832dbe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM rockylinux:8
LABEL maintainer="Manuel Giffels <[email protected]>"

RUN yum -y install epel-release curl && yum clean all
RUN yum -y install epel-release && yum -y install curl && yum clean all

RUN curl -sL https://rpm.nodesource.com/setup_18.x | bash -

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM rockylinux:9
LABEL maintainer="Manuel Giffels <[email protected]>"

RUN yum -y install epel-release curl && yum clean all
RUN yum -y install epel-release && yum -y install curl && yum clean all

RUN curl -sL https://rpm.nodesource.com/setup_18.x | bash -

Expand Down
4 changes: 2 additions & 2 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.. Created by changelog.py at 2022-12-07, command
.. Created by changelog.py at 2023-01-09, command
'/Users/giffler/.cache/pre-commit/repor6pnmwlm/py_env-python3.10/bin/changelog docs/source/changes compile --output=docs/source/changelog.rst'
based on the format of 'https://keepachangelog.com/'
#########
CHANGELOG
#########

[Unreleased] - 2022-12-07
[Unreleased] - 2023-01-09
=========================

Added
Expand Down

0 comments on commit 5832dbe

Please sign in to comment.