06b44d2f7c
Bumps ubuntu from 18.04 to 20.04. Signed-off-by: dependabot[bot] <support@github.com>
10 lines
182 B
Docker
10 lines
182 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y wget curl
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |