mirror of
https://github.com/cheat/cheat.git
synced 2024-10-31 21:21:02 +01:00
9 lines
236 B
Docker
9 lines
236 B
Docker
|
# NB: this image isn't used anywhere in the build pipeline. It exists to
|
||
|
# conveniently facilitate ad-hoc experimentation in a sandboxed environment
|
||
|
# during development.
|
||
|
FROM golang:1.15-alpine
|
||
|
|
||
|
RUN apk add git less make
|
||
|
|
||
|
WORKDIR /app
|