mirror of https://github.com/yandex/odyssey.git
10 lines
120 B
Docker
10 lines
120 B
Docker
![]() |
FROM golang:1.21
|
||
|
|
||
|
WORKDIR /root
|
||
|
COPY . /root
|
||
|
|
||
|
RUN go mod init prep_stmt_test && \
|
||
|
go mod tidy
|
||
|
|
||
|
ENTRYPOINT go test .
|