mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-10 09:23:35 +08:00
8c35a6ba2f
* basic e2e test * e2e ci * test typo * rm go.work * refactor things a bit * use current context for docker image * rm coverage.txt * ignore all coverage files * use package * unused const * simplify dockeringnore * made basic e2e test with cwd code * comments in compose files * fix go version file in e2e ci * experimental podman support * fixed ALPINE_VERSION arg source
11 lines
367 B
Text
11 lines
367 B
Text
# This Dockerfile is intented for Development purposes only to use
|
|
# with the provided docker-compose.yaml file.
|
|
# Please do not run this Dockerfile in any environment that is not
|
|
# a local development scenario as this is not throroughly updated nor
|
|
# tested.
|
|
FROM docker.io/golang:1.22-alpine
|
|
|
|
WORKDIR /src/shiori
|
|
|
|
ENTRYPOINT ["go", "run", "main.go"]
|
|
CMD ["server"]
|