Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Commit bd707a5

Browse files
authored
Merge pull request #145 from stellar/vc-developers-prefix
Serve from docker with `/developers` prefixed
2 parents 3834e3a + c83bcbb commit bd707a5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
repos
3+
Dockerfile

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ RUN apt-get update && apt-get install -y curl git make gcc g++ apt-transport-htt
1515

1616

1717
RUN npm install -q -g gulp && yarn install && rm -rf ./repos/ && \
18-
gulp --pathPrevix="/"
18+
gulp --pathPrefix="/developers"
1919

2020
FROM nginx:1.17
2121

22-
COPY --from=build /app/src/build/ /usr/share/nginx/html/
22+
COPY --from=build /app/src/build/ /usr/share/nginx/html/developers

0 commit comments

Comments
 (0)