Skip to content

Commit

Permalink
containerfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikromen committed Apr 14, 2024
1 parent f180ef9 commit 4e4b512
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build_aux/Containerfile.unittest
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
FROM fedora:39

RUN dnf update -y && dnf install python-pytest-cov copr-dist-git rpmdevtools python3-copr copr-cli dnf-plugins-core -y
RUN dnf update -y && \
dnf install -y \
python-pytest-cov \
copr-dist-git \
rpmdevtools \
python3-copr \
copr-cli \
dnf-plugins-core && \
dnf clean all

RUN useradd copr_user
USER copr_user
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ services:
build:
context: docker/frontend/
hostname: frontend
command:
- /bin/bash
depends_on:
- database
- redis
Expand Down

0 comments on commit 4e4b512

Please sign in to comment.