IPTest / Dockerfile
StarrySkyWorld's picture
Update Dockerfile
4325b94 verified
raw
history blame contribute delete
195 Bytes
FROM ubuntu:22.04
WORKDIR /app
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY test.sh .
CMD ["bash","test.sh"]