api: Dockerfile for containerizing the API service.
This commit is contained in:
parent
fcc2e40f8a
commit
0fe3ccfdd2
@ -1,6 +1,9 @@
|
||||
FROM 32707f62ca3b AS build
|
||||
FROM 063932952339.dkr.ecr.us-west-2.amazonaws.com/nim-alpine AS build
|
||||
MAINTAINER jonathan@jdbernard.com
|
||||
|
||||
# TODO: install db_migrate so we can use it below
|
||||
# RUN nimble install https://git.jdb-labs.com/jdb/db-migrate.git
|
||||
|
||||
#RUN apt-get install -y libssl-dev
|
||||
COPY personal_measure_api.nimble /pm-api/
|
||||
COPY src /pm-api/src
|
||||
@ -19,3 +22,6 @@ RUN apk -v --update add --no-cache \
|
||||
COPY --from=build /pm-api/personal_measure_api /
|
||||
COPY personal_measure_api.config.prod.json /personal_measure_api.config.json
|
||||
CMD ["/personal_measure_api", "serve"]
|
||||
|
||||
# TODO: replace the above with something like:
|
||||
# RUN /db_migrate up && /personal_measure_api serve
|
||||
|
Loading…
x
Reference in New Issue
Block a user