All checks were successful
Continuous Releases / build (push) Successful in 2s
7 lines
172 B
Docker
7 lines
172 B
Docker
ARG UBUNTU_VERSION=latest
|
|
FROM ubuntu:${UBUNTU_VERSION}
|
|
LABEL AUTHOR=Lauren
|
|
WORKDIR /opt/setup
|
|
RUN apt update
|
|
COPY setup.sh /opt/setup/setup.sh
|
|
RUN bash /opt/setup/setup.sh |