Skip to content

Instantly share code, notes, and snippets.

@anton-gorbikov
Created July 5, 2021 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anton-gorbikov/41b22811b020378ac519ddaab237e96e to your computer and use it in GitHub Desktop.
Save anton-gorbikov/41b22811b020378ac519ddaab237e96e to your computer and use it in GitHub Desktop.
FROM mcr.microsoft.com/dotnet/sdk:5.0
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
&& apt-get install -y nodejs \
&& npm install --global yarn
COPY . .
RUN yarn \
&& yarn build:web \
&& yarn build:api
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment