mirror of
https://github.com/labstack/echo.git
synced 2024-12-26 20:54:00 +02:00
5587974933
Signed-off-by: Vishal Rana <vr@labstack.com>
7 lines
215 B
Docker
7 lines
215 B
Docker
# 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 |