From 7d7d37ed0374962ff27a43d8d7bc1b5f576a7182 Mon Sep 17 00:00:00 2001 From: HYwooo <43744594+HYwooo@users.noreply.github.com> Date: Fri, 25 Oct 2024 19:52:13 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4d2a1fd..295f790 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ FROM ubuntu:noble -LABEL org.opencontainers.image.authors="HYwooo" \ +LABEL org.opencontainers.image.authors="HYwooo " \ org.opencontainers.image.title="bsv-wsl2" \ org.opencontainers.image.description="Docker image for Bluespec SystemVerilog environment on WSL2,compatible with https://github.com/WangXuan95/BSV_Tutorial_cn ." \ org.opencontainers.image.url="https://github.com/HYwooo/Docker-BSV-WSL2" \ org.opencontainers.image.source="https://github.com/HYwooo/Docker-BSV-WSL2" \ org.opencontainers.image.documentation="https://github.com/HYwooo/Docker-BSV-WSL2/blob/master/README.md" \ - org.opencontainers.image.version="1.0.1" \ + org.opencontainers.image.version="1.0.2" \ org.opencontainers.image.licenses="MIT" RUN sed -i 's@//.*archive.ubuntu.com@//mirrors.tuna.tsinghua.edu.cn@g' /etc/apt/sources.list.d/ubuntu.sources \ - && apt update -y && apt upgrade -y + && apt update -y -RUN apt install -y --no-install-recommends ca-certificates g++ wget iverilog tcl-dev gtkwave nano git +RUN apt install -y --no-install-recommends ca-certificates g++ wget iverilog tcl-dev gtkwave git WORKDIR /opt