aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/dockerfiles/Dockerfile_fedora
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/dockerfiles/Dockerfile_fedora')
-rw-r--r--.github/workflows/dockerfiles/Dockerfile_fedora10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/dockerfiles/Dockerfile_fedora b/.github/workflows/dockerfiles/Dockerfile_fedora
index 5cb9dee..9b6b5bd 100644
--- a/.github/workflows/dockerfiles/Dockerfile_fedora
+++ b/.github/workflows/dockerfiles/Dockerfile_fedora
@@ -12,22 +12,22 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM fedora:32
+FROM fedora:latest
MAINTAINER jmcgeheeiv@users.noreply.github.com
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
-ARG github_repo=jmcgeheeiv/pyfakefs
-ARG github_branch=master
+ARG github_repo=pytest-dev/pyfakefs
+ARG github_branch=main
RUN dnf install -y python3-pip unzip wget
RUN useradd -u 1000 pyfakefs
RUN mkdir -p work \
- && wget https://github.com/$github_repo/archive/$github_branch.zip \
- && unzip $github_branch.zip -d work
+ && wget https://github.com/$github_repo/archive/$github_branch.zip -O archive.zip \
+ && unzip archive.zip -d work
RUN WORK_DIR=`ls -d work/*`; mv $WORK_DIR work/pyfakefs
RUN chown -R pyfakefs:pyfakefs work/pyfakefs
WORKDIR work/pyfakefs