Skip to content

Commit

Permalink
feat: docker with node 8
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Jun 3, 2017
1 parent 9a7ac65 commit df1feb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cache:
- '%LOCALAPPDATA%\electron-builder\cache'

environment:
TEST_FILES: ExtraBuildTest,BuildTest,extraMetadataTest,filesTest,globTest,nsisUpdaterTest,oneClickInstallerTest,installerTest,appxTest
TEST_FILES: ExtraBuildTest,BuildTest,extraMetadataTest,filesTest,globTest,nsisUpdaterTest,oneClickInstallerTest,installerTest

install:
- ps: Install-Product node 6 x64
Expand Down
2 changes: 1 addition & 1 deletion docker/7/Dockerfile → docker/8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM electronuserland/electron-builder:base

# /~https://github.com/npm/npm/issues/4531
RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - && apt-get install -y nodejs && curl -L https://npmjs.org/install.sh | sh && npm cache clean && npm config set unsafe-perm true && npm completion >> ~/.bashrc && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y nodejs && curl -L https://npmjs.org/install.sh | sh && npm cache clean && npm config set unsafe-perm true && npm completion >> ~/.bashrc && apt-get clean && rm -rf /var/lib/apt/lists/*

0 comments on commit df1feb5

Please sign in to comment.