Skip to content

Commit

Permalink
version 2.1.5-0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cs-shadowbq committed Nov 4, 2021
1 parent c8b3e7b commit 2ab9182
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ LABEL org.opencontainers.image.authors="Scott MacGregor <[email protected]>" \
org.opencontainers.image.url="https://hub.docker.com/r/shadowbq/psfalcon" \
org.opencontainers.image.base.name="powershell:alpine-3.12" \
org.opencontainers.image.licenses="UNLICENSE" \
org.opencontainers.image.version="0.1.4" \
org.opencontainers.image.version="0.1.5" \
org.opencontainers.image.created=$IMAGE_CREATE_DATE \
com.github.cs-shadowbq.psfalcon="2.1.2"
com.github.cs-shadowbq.psfalcon="2.1.5"

SHELL [ "pwsh", "-command" ]
RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted; \
Install-Module Microsoft.PowerShell.SecretManagement, Microsoft.PowerShell.SecretStore; \
Register-SecretVault -Name CrowdStrikeSecretStore -ModuleName Microsoft.PowerShell.SecretStore; \
Install-Module PSFalcon -Scope CurrentUser -RequiredVersion 2.1.2 -Force; \
Install-Module PSFalcon -Scope CurrentUser -RequiredVersion 2.1.5 -Force; \
Update-Help -Force;

WORKDIR /data
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ LABEL org.opencontainers.image.source="https://github.com/cs-shadowbq/psfalcon-d
LABEL org.opencontainers.image.url="https://hub.docker.com/r/shadowbq/psfalcon"
LABEL org.opencontainers.image.base.name="ubi8/ubi"
LABEL org.opencontainers.image.licenses="UNLICENSE"
LABEL org.opencontainers.image.version="0.1.4"
LABEL org.opencontainers.image.version="0.1.5"
LABEL org.opencontainers.image.created=$IMAGE_CREATE_DATE
LABEL com.github.cs-shadowbq.psfalcon="2.1.2"
LABEL com.github.cs-shadowbq.psfalcon="2.1.5"

RUN curl https://packages.microsoft.com/config/rhel/8/prod.repo| tee /etc/yum.repos.d/microsoft.repo

Expand All @@ -25,7 +25,7 @@ SHELL [ "pwsh", "-command" ]
RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
RUN Install-Module Microsoft.PowerShell.SecretManagement, Microsoft.PowerShell.SecretStore
RUN Register-SecretVault -Name CrowdStrikeSecretStore -ModuleName Microsoft.PowerShell.SecretStore
RUN Install-Module PSFalcon -Scope CurrentUser -RequiredVersion 2.1.2 -Force
RUN Install-Module PSFalcon -Scope CurrentUser -RequiredVersion 2.1.5 -Force
RUN Update-Help -Force

WORKDIR /data
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.ubuntu.20.04
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ LABEL org.opencontainers.image.source="https://github.com/cs-shadowbq/psfalcon-d
LABEL org.opencontainers.image.url="https://hub.docker.com/r/shadowbq/psfalcon"
LABEL org.opencontainers.image.base.name="powershell:ubuntu-20.04"
LABEL org.opencontainers.image.licenses="UNLICENSE"
LABEL org.opencontainers.image.version="0.1.4"
LABEL org.opencontainers.image.version="0.1.5"
LABEL org.opencontainers.image.created=$IMAGE_CREATE_DATE
LABEL com.github.cs-shadowbq.psfalcon="2.1.2"
LABEL com.github.cs-shadowbq.psfalcon="2.1.5"

RUN apt-get update && apt-get upgrade -y
RUN chsh -s /usr/bin/pwsh
Expand All @@ -20,7 +20,7 @@ SHELL [ "pwsh", "-command" ]
RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
RUN Install-Module Microsoft.PowerShell.SecretManagement, Microsoft.PowerShell.SecretStore
RUN Register-SecretVault -Name CrowdStrikeSecretStore -ModuleName Microsoft.PowerShell.SecretStore
RUN Install-Module PSFalcon -Scope CurrentUser -RequiredVersion 2.1.2 -Force
RUN Install-Module PSFalcon -Scope CurrentUser -RequiredVersion 2.1.5 -Force
RUN Update-Help -Force

WORKDIR /data
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.1.5
2 changes: 1 addition & 1 deletion image.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
USERNAME=shadowbq
IMAGE=psfalcon
PSFALCON="2.1.2"
PSFALCON="2.1.5"

0 comments on commit 2ab9182

Please sign in to comment.