Skip to content

Commit b191871

Browse files
StartAutomatingStartAutomating
authored andcommitted
feat: Updating PipeScript Docker File Order ( Fixes #662 )
And updating start script
1 parent a6a063a commit b191871

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
1+
12
FROM mcr.microsoft.com/powershell
23

34

45
ENV PIPESCRIPT_VERSION 0.2.6
56

67

7-
COPY ./ ./Modules/PipeScript
8-
8+
RUN apt-get update && apt-get install -y git curl ca-certificates libc6 libgcc1
99

10-
COPY ././PipeScript.Server.Start.ps1 /root/.config/powershell/Microsoft.PowerShell_profile.ps1
1110
ENV PSModulePath ./Modules
1211

1312

13+
RUN opt/microsoft/powershell/7/pwsh --noprofile --nologo -c Install-Module 'Splatter','PSSVG','ugit','Irregular' -Scope CurrentUser -Force
14+
15+
16+
COPY ./ ./Modules/PipeScript
1417

1518

19+
COPY ././Http.Server.Start.ps1 /root/.config/powershell/Microsoft.PowerShell_profile.ps1
1620

1721

0 commit comments

Comments
 (0)