Fix frontend dockerized env in windows

This commit is contained in:
Reckless_Satoshi 2023-05-14 16:32:44 -07:00
parent 794377dbfc
commit fd8f64e93a
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
3 changed files with 4 additions and 4 deletions

View File

@ -22,9 +22,7 @@ jobs:
- uses: actions/checkout@v3
- name: 'Copy Static' # Needed since Github actions does not support symlinks
run: |
rm nodeapp/static
cp -r frontend/static nodeapp/static
run: cp -r frontend/static nodeapp/static
- name: 'Download main.js Artifact'
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml

View File

@ -2,6 +2,9 @@ FROM alpine:3.18.0
LABEL maintainer="Reckless_Satoshi https://github.com/reckless-satoshi"
# Needs a copy or symlink of /frontend/static in /nodeapp/static
# Github client release workflow copies /frontend/static here
RUN mkdir -p /usr/src/robosats
WORKDIR /usr/src/robosats

View File

@ -1 +0,0 @@
../frontend/static