mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-10 06:28:04 -05:00
12 lines
257 B
Docker
12 lines
257 B
Docker
# Start from the latest golang base image
|
|
FROM golang:1.21
|
|
|
|
# Install Docker
|
|
RUN apt-get update && apt-get install -y docker.io docker-compose
|
|
|
|
# Set the working directory
|
|
WORKDIR /go/src/app
|
|
|
|
# This container will be executable
|
|
ENTRYPOINT [ "/bin/bash" ]
|