Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bignay2000 committed Jan 7, 2018
0 parents commit 4e63507
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Created by .ignore support plugin (hsz.mobi)
.idea/
*.iml
*.log
target/
.settings
.project
.classpath
/src/main/resources/images/Thumbs.db
21 changes: 21 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#To Build: docker build --no-cache=true -t helloworldarm .

#To Run: docker run --restart=always -d -t --env "WEBPAGESTRING=helloworld" -p 80:8080 --name helloworldarm -h helloworldarm helloworldarm

FROM resin/rpi-raspbian

MAINTAINER [email protected]

# Install prerequisites
RUN apt-get install libunwind8

# Grab the latest tar.gz
RUN wget https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-rc.2/powershell-6.0.0-rc.2-linux-arm32.tar.gz

# Make folder to put powershell
RUN mkdir ~/powershell

# Unpack the tar.gz file
RUNtar -xvf ./powershell-6.0.0-rc.2-linux-arm32.tar.gz -C ~/powershell

CMD ["~/powershell/pwsh"]

0 comments on commit 4e63507

Please sign in to comment.