An open API service indexing awesome lists of open source software.

https://github.com/youpy/go-serve


https://github.com/youpy/go-serve

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

          

# go-serve

https://hub.docker.com/r/youpy/go-serve

## Usage

```Dockerfile
FROM node:alpine as builder

COPY . ./
RUN yarn && yarn build

FROM youpy/go-serve
COPY --from=0 /build ./build/
```

```
$ docker build -t image-name .
$ docker run --rm -p 5000:5000 image-name
```