-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust docker build context used in makefiles (#16)
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ MAINTAINER SDF Ops Team <[email protected]> | |
|
||
RUN mkdir -p /app/server | ||
RUN mkdir -p /app/@stellar/anchor-tests | ||
RUN apt-get update && apt-get install -y gnupg1 | ||
RUN apt-get update && apt-get install -y gnupg1 libtool build-essential | ||
|
||
WORKDIR /app | ||
|
||
|
@@ -17,9 +17,9 @@ RUN apt-get update && apt-get install -y gnupg curl git make apt-transport-https | |
|
||
COPY tsconfig.json package.json yarn.lock /app/ | ||
COPY ./server /app/server/ | ||
COPY ./@stellar/anchor-tests /app/@stellar/anchor-tests | ||
COPY ./@stellar/anchor-tests /app/@stellar/anchor-tests/ | ||
RUN yarn install | ||
RUN yarn workspace server build | ||
RUN yarn build:server | ||
|
||
EXPOSE 8000 | ||
CMD ["yarn", "workspace", "server", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters