mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
Co-authored-by: maskpp <maskpp266@gmail.com> Co-authored-by: Orest Tarasiuk <830847+OrestTa@users.noreply.github.com> Co-authored-by: Xi Lin <zimpha@gmail.com> Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Co-authored-by: Haichen Shen <shenhaichen@gmail.com> Co-authored-by: Péter Garamvölgyi <peter@scroll.io>
12 lines
242 B
Docker
12 lines
242 B
Docker
# Start from the latest golang base image
|
|
FROM golang:1.18
|
|
|
|
# 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" ]
|