~dricottone/container-images

ref: 5c547f704917111492a08dc5e8ed70bee79b03e8 container-images/fcgi/README.md -rw-r--r-- 417 bytes
5c547f70Dominic Ricottone Quick fix 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# fcgi


## Build and Deploy

```
make image
```


### Tags

 + `latest`

----

## Use

Can be used with any container manager toolchain.

This is a base image for application-specific container images.

```
FROM fcgi

WORKDIR /app

COPY app-dist /app
```

The FastCGI server then can be proxied over port 9000.
A script copied into the container at `/app/script.cgi` would be available
at `example.com/script.cgi`.