Files
scroll/build/dockerfiles/local_testing.Dockerfile
2023-08-01 10:32:45 +08:00

12 lines
242 B
Docker

# Start from the latest golang base image
FROM golang:1.19
# Install Docker
RUN apt-get update && apt-get install -y docker.io
# Set the working directory
WORKDIR /go/src/app
# This container will be executable
ENTRYPOINT [ "/bin/bash" ]