-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM registry.fedoraproject.org/fedora:39 | ||
MAINTAINER "Telco5G Field Engineering Team" | ||
RUN dnf -y install python3-pip gcc redhat-rpm-config python3-devel npm libxml2-devel xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel | ||
LABEL org.opencontainers.image.authors="Telco5G Field Engineering Team" | ||
RUN dnf -y install python3-pip gcc redhat-rpm-config python3-devel npm libxml2-devel xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel; dnf clean all | ||
RUN dnf clean all | ||
COPY src/ /srv/ | ||
WORKDIR /srv | ||
RUN pip3 install . | ||
RUN pip3 install --no-cache-dir . | ||
RUN npm ci --prefix t5gweb/static | ||
EXPOSE 8080 |