Hi All,
I've been trying to create a docker container of a windows nano server to run a django application.
I'm having trouble with the build and I'm looking for some advice.
Everything appears to install fine from the build file (Below)
but then when I try to use pip I get the this error

Does anyone have any idea why or if it's possible to run on nano server?
I've been trying to create a docker container of a windows nano server to run a django application.
I'm having trouble with the build and I'm looking for some advice.
Everything appears to install fine from the build file (Below)
1 2 3 4 5 6 7 8 9 10 11 |
# Indicates that the nanoserver image will be used as the base image FROM microsoft / nanoserver # Copies the python 37 files to the server COPY . / Python c: / Python # Uses PowerShell to set the env path and install get-pip.py RUN powershell.exe - Command \ $Env:Path + = “;C:\python;C:\python\Python37;C:\python\Python37\Scripts;C:\python\Scripts” ; \ SETX PATH $Env:Path / M ; \ python C:\python\Scripts\get - pip.py |

Does anyone have any idea why or if it's possible to run on nano server?