mirror of
https://github.com/fspc/workstand.git
synced 2025-02-22 08:53:23 -05:00
* Linting. * Clean up. * Hope this makes installs better. * Rework edit member form with notes and banned and suspended. * Add slack notifications. * Display new member statuses. * Update docker run command migrate, collectstatic, and rebuild_index * Formatting and only push when master. * Don’t need this for an edit page. * More meaningful action. * Add testing requirements. * Run tests during build. * Use prod settings for testing. * Nail down the order of those tests.
11 lines
270 B
Plaintext
11 lines
270 B
Plaintext
FROM node:7.3.0
|
|
RUN mkdir /code
|
|
WORKDIR /code
|
|
ADD ./bikeshop_project/package.json package.json
|
|
RUN npm install
|
|
RUN npm install -g bower
|
|
ADD ./bikeshop_project/.bowerrc .bowerrc
|
|
ADD ./bikeshop_project/bower.json bower.json
|
|
RUN bower install --allow-root
|
|
EXPOSE 3000:3000
|