I have the following Dockerfile:
FROM openmamba/openmamba:latest
COPY . /srv
RUN dnf update --refresh --assumeyes && \
dnf install -y git make && \
git clone --depth=1 https://github.com/vlang/v /usr/local/v && \
cd /usr/local/v && \
make && \
cd /srv && \
/usr/local/v -prod .
CMD ["/srv/exec"]
EXPOSE 8080
The step dnf update --refresh --assumeyes fails, I have attached the log.
Is this expected?
Edit: I’m not allowed to upload the log, I put it on pastebin https://pastebin.com/UddYes2K