everywhere: remove -ce suffix

This commit is contained in:
Adhityaa Chandrasekar
2018-12-28 12:41:45 -05:00
parent 5aa3bc86eb
commit 02615088ff
8 changed files with 54 additions and 54 deletions

View File

@@ -1,8 +1,8 @@
# backend build (api server)
FROM golang:1.10.2-alpine AS api-build
COPY ./api /go/src/commento-ce/api
WORKDIR /go/src/commento-ce/api
COPY ./api /go/src/commento/api
WORKDIR /go/src/commento/api
RUN apk update && apk add bash make git curl
RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
@@ -13,8 +13,8 @@ RUN make prod -j$(($(nproc) + 1))
# frontend build (html, js, css, images)
FROM node:10.3.0-alpine AS frontend-build
COPY ./frontend /commento-ce/frontend/
WORKDIR /commento-ce/frontend/
COPY ./frontend /commento/frontend/
WORKDIR /commento/frontend/
RUN apk update && apk add bash make
RUN npm install -g html-minifier@3.5.7 uglify-js@3.4.1 sass@1.5.1
@@ -25,8 +25,8 @@ RUN make prod -j$(($(nproc) + 1))
# templates build
FROM alpine:3.7 AS templates-build
COPY ./templates /commento-ce/templates
WORKDIR /commento-ce/templates
COPY ./templates /commento/templates
WORKDIR /commento/templates
RUN apk update && apk add bash make
@@ -36,8 +36,8 @@ RUN make prod -j$(($(nproc) + 1))
# db build
FROM alpine:3.7 AS db-build
COPY ./db /commento-ce/db
WORKDIR /commento-ce/db
COPY ./db /commento/db
WORKDIR /commento/db
RUN apk update && apk add bash make
@@ -47,19 +47,19 @@ RUN make prod -j$(($(nproc) + 1))
# final image
FROM alpine:3.7
COPY --from=api-build /go/src/commento-ce/api/build/prod/commento-ce /commento-ce/commento-ce
COPY --from=frontend-build /commento-ce/frontend/build/prod/*.html /commento-ce/
COPY --from=frontend-build /commento-ce/frontend/build/prod/css/*.css /commento-ce/css/
COPY --from=frontend-build /commento-ce/frontend/build/prod/js/*.js /commento-ce/js/
COPY --from=frontend-build /commento-ce/frontend/build/prod/images/* /commento-ce/images/
COPY --from=templates-build /commento-ce/templates/build/prod/templates/ /commento-ce/templates/
COPY --from=db-build /commento-ce/db/build/prod/db/ /commento-ce/db/
COPY --from=api-build /go/src/commento/api/build/prod/commento /commento/commento
COPY --from=frontend-build /commento/frontend/build/prod/*.html /commento/
COPY --from=frontend-build /commento/frontend/build/prod/css/*.css /commento/css/
COPY --from=frontend-build /commento/frontend/build/prod/js/*.js /commento/js/
COPY --from=frontend-build /commento/frontend/build/prod/images/* /commento/images/
COPY --from=templates-build /commento/templates/build/prod/templates/ /commento/templates/
COPY --from=db-build /commento/db/build/prod/db/ /commento/db/
RUN apk update && apk add ca-certificates --no-cache
EXPOSE 8080
WORKDIR /commento-ce/
WORKDIR /commento/
ENV COMMENTO_BIND_ADDRESS="0.0.0.0"
ENTRYPOINT ["/commento-ce/commento-ce"]
ENTRYPOINT ["/commento/commento"]