Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/Webapp-Port #1956

Merged
merged 2 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Layerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
# install the latest version of Docker, as in the official Docker installation tutorial.
RUN apt-get update && \
apt-get install ca-certificates curl gnupg lsb-release && \
sudo mkdir -p /etc/apt/keyrings && \

Check warning on line 6 in Layerfile

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (keyrings)
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \

Check warning on line 7 in Layerfile

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (dearmor)

Check warning on line 7 in Layerfile

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (keyrings)
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |\

Check warning on line 9 in Layerfile

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (dpkg)

Check warning on line 9 in Layerfile

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (keyrings)
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null && \
apt-get update && \
apt-get install docker-ce docker-ce-cli containerd.io

Check warning on line 12 in Layerfile

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (containerd)

RUN REPEATABLE docker pull everco/ever-teams-webapp

RUN REPEATABLE docker run -d -p 3000:3000 everco/ever-teams-webapp && sleep 5
RUN REPEATABLE docker run -d -p 3033:3000 everco/ever-teams-webapp && sleep 5

EXPOSE WEBSITE localhost:3000
EXPOSE WEBSITE localhost:3033
4 changes: 2 additions & 2 deletions Layerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# install the latest version of Docker, as in the official Docker installation tutorial.
RUN apt-get update && \
apt-get install ca-certificates curl gnupg lsb-release && \
sudo mkdir -p /etc/apt/keyrings && \

Check warning on line 8 in Layerfile.build

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (keyrings)
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \

Check warning on line 9 in Layerfile.build

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (dearmor)

Check warning on line 9 in Layerfile.build

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (keyrings)
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |\

Check warning on line 11 in Layerfile.build

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (dpkg)
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null && \
apt-get update && \
apt-get install docker-ce docker-ce-cli containerd.io
Expand All @@ -17,6 +17,6 @@

RUN REPEATABLE docker build -t ever-teams .

RUN REPEATABLE docker run -d -p 3000:3000 ever-teams && sleep 5
RUN REPEATABLE docker run -d -p 3033:3000 ever-teams && sleep 5

EXPOSE WEBSITE localhost:3000
EXPOSE WEBSITE localhost:3033
4 changes: 2 additions & 2 deletions Layerfile.node
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ COPY . .

RUN REPEATABLE cd apps/web && yarn install && yarn build

RUN BACKGROUND yarn start:web
RUN BACKGROUND PORT=3033 yarn start:web

EXPOSE WEBSITE localhost:3000
EXPOSE WEBSITE localhost:3033
Loading