mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
133700160a
Co-Authored-By: tobtoht <thotbot@protonmail.com>
13 lines
No EOL
340 B
Text
13 lines
No EOL
340 B
Text
# this image is used internally for the buildbot
|
|
FROM ubuntu:20.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt clean && apt update
|
|
RUN apt install -y git build-essential wget curl ngrep unzip file ssh zip
|
|
|
|
RUN cat /dev/zero | ssh-keygen -q -N ""
|
|
|
|
RUN cat ~/.ssh/id_rsa.pub
|
|
|
|
RUN printf "Host *\n StrictHostKeyChecking no" > ~/.ssh/config |