Skip to content

Commit e6de575

Browse files
committed
Include comment in dockerfile for reasoning behind k command.
Update bug report to include snippet about docker.
1 parent 833611e commit e6de575

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,13 @@ If applicable, add screenshots to help explain your problem.
2828
- Browser [e.g. chrome, safari]
2929
- Version [e.g. 22]
3030

31-
**Server info
31+
**Server info**
3232
- OS: [e.g. Ubuntu, CentOS, Windows]
3333
- Version (16.04, 8.1.1911, 10]
3434
- NodeJS version (e.g. 13.13.0)
3535

36+
**Docker Information**
37+
If you are running through docker, please provide as much information as you can with your docker files. Please make sure to scrub your data and remove any keys such as the DB keys, Steam API key, or MySQL passwords.
38+
3639
**Additional context**
3740
Add any other context about the problem here.

Dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
1313
gnupg \
1414
git
1515

16+
# SSL Errors Exist in 6-buster. Let's ignore them for now...
1617
RUN echo "-k" > ~/.curlrc
1718
# add yarn repo
1819
RUN curl https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
@@ -22,13 +23,7 @@ RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources
2223
SHELL ["/bin/bash", "--login", "-c"]
2324
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
2425
RUN nvm install 16.5.0
25-
# ENV NODE_VERSION=16.5.0
26-
# RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
27-
# ENV NVM_DIR=/root/.nvm
28-
# RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
29-
# RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
30-
# RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
31-
# ENV PATH="/root/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}"
26+
3227

3328
# install yarn
3429
RUN apt-get update && apt-get install --no-install-recommends -y \

0 commit comments

Comments
 (0)