1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-26 03:20:08 +02:00

7 lines
215 B
Docker
Raw Normal View History

# Dockerfile extending the generic Go image with application files for a
# single application.
FROM gcr.io/google_appengine/golang
COPY . /go/src/app
RUN go-wrapper download
RUN go-wrapper install -tags appenginevm