mirror of
https://gitee.com/wa-lang/wa.git
synced 2025-12-06 09:18:53 +08:00
19 lines
391 B
Docker
19 lines
391 B
Docker
# 版权 @2024 凹语言 作者。保留所有权利。
|
|
|
|
FROM --platform=linux/amd64 ubuntu:22.04
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/wa-lang/wa"
|
|
|
|
WORKDIR /root
|
|
|
|
# install git
|
|
RUN apt update
|
|
RUN apt install -y git
|
|
|
|
# go run ./builder
|
|
COPY ./wa /usr/local/wa
|
|
ENV PATH=${PATH}:/usr/local/bin/wa
|
|
|
|
# docker run --platform linux/amd64 --rm -it wa-lang/wa
|
|
CMD ["/bin/bash"]
|