4 lines
87 B
Docker
4 lines
87 B
Docker
FROM alpine:3.20.2
|
|
RUN apk update && apk add curl openssh && mkdir /test
|
|
WORKDIR /test
|