diff options
author | terminaldweller <thabogre@gmail.com> | 2022-05-03 10:28:42 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-05-03 10:28:42 +0000 |
commit | 056dcb5b4fda70f963bfb392fcd2816170f2bc12 (patch) | |
tree | cf79d8f2ef8cbfe574d59b9d785dbb52496aff4d /spring-front | |
parent | update (diff) | |
download | mdrtl-056dcb5b4fda70f963bfb392fcd2816170f2bc12.tar.gz mdrtl-056dcb5b4fda70f963bfb392fcd2816170f2bc12.zip |
added PUT, the CRUD is done now. just need to test the crud
Diffstat (limited to 'spring-front')
-rw-r--r-- | spring-front/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spring-front/Dockerfile b/spring-front/Dockerfile index 5e236e6..e76de11 100644 --- a/spring-front/Dockerfile +++ b/spring-front/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine3.15 as certbuilder +FROM alpine:3.15 as certbuilder RUN apk add openssl WORKDIR /certs RUN openssl req -nodes -new -x509 -subj="/C=US/ST=Denial/L=springfield/O=Dis/CN=localhost" -keyout server.key -out server.cert |