forked from Uniswap/v2-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from neonlabsorg/fix-org-name
fix org name
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 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
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt update && \ | ||
DEBIAN_FRONTEND=noninteractive apt -y install \ | ||
software-properties-common git npm curl && \ | ||
npm install -g yarn waffle && \ | ||
rm -rf /var/lib/apt/lists/* | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && apt-get install -y curl software-properties-common git npm | ||
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - | ||
RUN apt-get install -y nodejs | ||
RUN npm install -g yarn waffle | ||
RUN rm -rf /var/lib/apt/lists/* | ||
|
||
COPY . /opt | ||
WORKDIR /opt | ||
|
||
RUN yarn && yarn compile |