simple is better
a docker version of 2048
Base on gabrielecirulli/2048(https://github.com/gabrielecirulli/2048)
Base on alpine
Base on nginx
#dockerfile
FROM alpine:latest
MAINTAINER alex [email protected]
RUN apk --update add nginx
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
#how to use
git clone this project ,and docker build -t "yourname" .
Content type
Image
Digest
sha256:4913452e5…
Size
3.9 MB
Last updated
about 11 years ago
docker pull alexwhen/docker-2048